6d446a7b3689b99628c234b8e99c6bc6974a8f3a,source/com/intellij/openapi/vcs/impl/ModuleVcsPathPresenter.java,ModuleVcsPathPresenter,getPresentableRelativePath,#ContentRevision#ContentRevision#,51
Before Change
return getPresentableRelativePathFor(oldFile);
}
}
return FileUtil.getRelativePath(toRevision.getFile().getIOFile(), fromRevision.getFile().getIOFile());
}
}
After Change
}
}
final RelativePathCalculator calculator =
new RelativePathCalculator(toRevision.getFile().getIOFile().getAbsolutePath(), fromRevision.getFile().getIOFile().getAbsolutePath());
calculator.execute();
final String result = calculator.getResult();
return (result == null) ? null : result.replace("/", File.separator);